blob: eff30e4668838dbe8a273d2f9439e728e8f251b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
import BasicLayout from '@/core/components/layouts/BasicLayout';
import IsAuth from '@/lib/auth/components/IsAuth';
import FinishTempoComponent from '@/lib/pengajuan-tempo/component/FinishTempo';
import { useRouter } from 'next/router';
import axios from 'axios';
import { useState, useEffect } from 'react';
import Seo from '@/core/components/Seo';
import { getAuth } from '~/libs/auth';
export async function getServerSideProps(context) {
return { props: {} };
}
export default function Finish() {
const [isLoading, setIsLoading] = useState(true);
const router = useRouter();
const auth = getAuth();
useEffect(() => {
if (!auth) {
const nextUrl = encodeURIComponent(router.asPath);
router.push(`/login?next=${nextUrl}`);
} else {
setIsLoading(false);
}
}, [auth]);
if (isLoading || !auth) {
return null; // Tidak render apa pun selama loading atau auth/tempo belum tersedia
}
return (
<>
<Seo title='Pengajuan Tempo Indoteknik.com' />
<IsAuth>
<BasicLayout>
<FinishTempoComponent query={router.query || {}} />
</BasicLayout>
</IsAuth>
</>
);
}
|